home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / stdlib / ldiv.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  167 b   |  13 lines

  1. /*  Keine Ahnung, ob das ok ist */
  2.  
  3. #include <stdlib.h>
  4.  
  5. ldiv_t ldiv(long num,long denom)
  6. {
  7.     ldiv_t r;
  8.     r.quot=num/denom;
  9.     r.rem=num%denom;
  10.     return(r);
  11. }
  12.  
  13.